home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Utilities / Workspace / Locus / Source / WidePopupController.h < prev    next >
Text File  |  1995-06-12  |  977b  |  54 lines

  1.  
  2. /*
  3.     Copyright 1993  Jeremy Slade.
  4.  
  5.     You are free to use all or any parts of the Locus project
  6.     however you wish, just give credit where credit is due.
  7.     The author (Jeremy Slade) shall not be held responsible
  8.     for any damages that result out of use or misuse of any
  9.     part of this project.
  10.  
  11. */
  12.  
  13. /*
  14.     Project: Locus
  15.     
  16.     Class: WidePopupController
  17.     
  18.     Description:
  19.  
  20.     This is a class that allows you to have a PopUpList that is wide enough to display the full width of the entries in the PopUpList, even if they are wider than the PopUp's cover button.
  21.  
  22.     Original author: Jeremy Slade
  23.     
  24.     Revision History:
  25.         Created
  26.             V.101    JGS FMon Feb  8 23:00:40 GMT-0700 1993
  27.  
  28. */
  29.  
  30. #ifndef WidePopupController_h
  31. #define WidePopupController_h
  32.  
  33. #define WidePopupController_VERSION (101)
  34.  
  35.  
  36. #import <objc/Object.h>
  37.  
  38.  
  39. @interface WidePopupController : Object
  40. {
  41.     id     cover;
  42.     id    popUp;
  43. }
  44.  
  45. + initialize;
  46.  
  47. - initForButton:aButton andPopup:aPopUpList;
  48. - popUp:sender;
  49.  
  50. @end
  51.  
  52. #endif // WidePopupController_h
  53.  
  54.